home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Snippets / sscanf / sscanf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-10  |  1.1 KB  |  22 lines  |  [TEXT/ALFA]

  1. /************************************************************************
  2. *                                                                       *
  3. * sscanf.h                                                              *
  4. *                                                                       *
  5. * Header file for a freely distributable sscanf() function.             *
  6. *                                                                       *
  7. * ********************************************************************* *
  8. *                                                                       *
  9. * Copyright (C) 1992   Brent Burton                                     *
  10. *                                                                       *
  11. ************************************************************************/
  12.  
  13.  
  14. /* #define COMPARING  /* uncomment this to compare this to the original */
  15.  
  16.  
  17. #ifdef COMPARING    /* if comparing, rename sscanf() compatible function */
  18.   int mysscanf(const char *str, const char *fmt, ...);
  19. #else
  20.   int   sscanf(const char *str, const char *fmt, ...);
  21. #endif
  22.